Previous Book Contents Book Index Next

Inside Macintosh: Mac OS 8 Toolbox Reference /
Chapter 7 - Finder Interface Reference / Finder Interface Types and Constants
The Folder Descriptor Structure


Folder Descriptor Flag Constants

NEW WITH MAC OS 8

These flags allow you to specify whether a folder is created during startup, if the name of the folder is locked when the folder is created, and if the folder created is invisible. Use these in the flags field of the folder descriptor structure. All other flag bits are reserved for future use by Apple Computer, Inc.

Set any combination of the following bits:

enum {
   kCreateFolderAtBoot      = 0x00000002,
   kFolderCreatedInvisible  = 0x00000004,
   kFolderCreatedNameLocked = 0x00000008
};
typedef UInt32 FolderDescFlags;

Constant descriptions

kCreateFolderAtBoot
Folder created at boot if needed.
kFolderCreatedInvisible
Folder created as invisible.
kFolderCreatedNameLocked
Folder created with a locked name.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
8 JAN 1998